home *** CD-ROM | disk | FTP | other *** search
/ Zoom 2 / Zoom - Release 2 (1996)(Active Software)[!].iso / programming / amigac / dice_c_demo / include / setjmp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-09  |  269 b   |  18 lines

  1.  
  2. /*
  3.  * $VER: setjmp.h 1.0 (17.4.93)
  4.  *
  5.  * (c)Copyright 1992 Obvious Implementations Corp, All Rights Reserved
  6.  */
  7.  
  8. #ifndef SETJMP_H
  9. #define SETJMP_H
  10.  
  11. typedef long jmp_buf[16];
  12.  
  13. extern __stkargs int setjmp(jmp_buf);
  14. extern __stkargs void longjmp(jmp_buf, int);
  15.  
  16. #endif
  17.  
  18.